projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
01a4d29
)
(Fmake_byte_code): Call make_pure_vector using nargs.
author
Richard M. Stallman
<rms@gnu.org>
Wed, 4 Sep 1996 00:06:48 +0000
(
00:06
+0000)
committer
Richard M. Stallman
<rms@gnu.org>
Wed, 4 Sep 1996 00:06:48 +0000
(
00:06
+0000)
src/alloc.c
patch
|
blob
|
history
diff --git
a/src/alloc.c
b/src/alloc.c
index 4f66fbd4d354f95c66bf459a4881766421343233..a526739d0e7ae35a696ced6477091550fd9b3141 100644
(file)
--- a/
src/alloc.c
+++ b/
src/alloc.c
@@
-824,7
+824,7
@@
significance.")
XSETFASTINT (len, nargs);
if (!NILP (Vpurify_flag))
- val = make_pure_vector (
XFASTINT (len)
);
+ val = make_pure_vector (
(EMACS_INT) nargs
);
else
val = Fmake_vector (len, Qnil);
p = XVECTOR (val);